:root {
  --black: #090a0a;
  --panel: #101111;
  --line: rgba(255, 255, 255, 0.12);
  --muted: #858583;
  --cream: #f1f0eb;
  --lime: #9bea00;
  --lime-soft: #c7f276;
  --header-muted: #8c8b88;
  --body-muted: #858480;
  --strip-muted: #8a8985;
  --mono: "DM Mono", monospace;
  --sans: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }
body { margin: 0; background: var(--black); color: var(--cream); font-family: var(--sans); scrollbar-width: none; }
body::-webkit-scrollbar { display: none; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.site-shell { min-height: 100vh; overflow-x: clip; background: var(--black); transition: background .3s ease, color .3s ease; }
.site-header {
  align-items: center; border-bottom: 1px solid var(--line); display: flex; height: 92px;
  justify-content: space-between; padding: 0 clamp(22px, 5vw, 72px); position: relative; z-index: 100;
}
.brand { align-items: center; display: inline-flex; gap: 12px; color: var(--cream); }
.brand-mark { align-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: flex; font-size: 11px; height: 34px; justify-content: center; letter-spacing: -1px; width: 34px; background: transparent; }
.brand-name { font-size: 14px; font-weight: 700; letter-spacing: .01em; }
.brand-name span { color: #777776; font-weight: 500; }
.main-nav { display: flex; gap: 34px; margin-left: auto; margin-right: 40px; }
.main-nav a { color: var(--header-muted); font-size: 13px; transition: color .25s ease; }
.main-nav a:hover { color: var(--cream); }
.header-actions { align-items: center; display: flex; gap: 10px; }
.language-switcher, .theme-button { background: transparent; border: 1px solid var(--line); cursor: pointer; }
.language-toggle {
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  display: flex;
  font-family: var(--mono);
  font-size: 10px;
  height: 38px;
  position: relative;
  width: 80px;
}

.toggle-option {
  background: transparent;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  flex: 1;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.toggle-option.active {
  color: var(--black);
}

.toggle-option:hover {
  color: var(--cream);
}

.toggle-indicator {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  background: var(--cream);
  border-radius: 18px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}

.language-toggle[data-active="en"] .toggle-indicator {
  transform: translateX(100%);
}
.theme-button { border-radius: 50%; color: #999a95; height: 38px; width: 38px; display: flex; align-items: center; justify-content: center; }

.theme-button span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-button svg {
  width: 18px;
  height: 18px;
}

.mobile-header-actions .theme-button {
  height: 32px;
  width: 32px;
  border: 1px solid var(--line);
}

.mobile-header-actions .theme-button svg {
  width: 16px;
  height: 16px;
}

.mobile-header-actions .language-toggle {
  height: 32px;
  width: 70px;
  font-size: 9px;
}

.mobile-header-actions .language-toggle .toggle-indicator {
  width: calc(50% - 2px);
  height: calc(100% - 4px);
  top: 2px;
  left: 2px;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger-menu span {
  width: 100%;
  height: 2px;
  background: var(--muted);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center;
}

.hamburger-menu[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger-menu[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  align-items: center;
  gap: 20px;
}

.mobile-header-actions {
  display: none;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.contact-button, .primary-button { background: var(--lime); color: #080a04; font-size: 13px; font-weight: 700; }
.contact-button { border-radius: 24px; padding: 13px 23px; transition: box-shadow .25s, transform .25s; }
.contact-button:hover, .primary-button:hover { box-shadow: 0 10px 28px rgba(155, 234, 0, .24); transform: translateY(-2px); }

.hero { align-items: center; display: flex; justify-content: center; min-height: 563px; overflow: hidden; position: relative; text-align: center; }
.hero-glow { background: radial-gradient(ellipse, rgba(130, 198, 18, .09) 0%, rgba(9, 10, 10, 0) 65%); height: 560px; left: 50%; pointer-events: none; position: absolute; top: 45%; transform: translate(-50%, -50%); width: 1000px; }
.hero-content { animation: reveal .85s cubic-bezier(.2,.8,.2,1) both; padding: 60px 20px 70px; position: relative; max-width: 900px; margin: 0 auto; }

/* Apple-style Minimalist Hero */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(155, 234, 0, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* Premium Text Effects */
.hero .eyebrow {
  animation: hero-heading-in .9s .1s cubic-bezier(.2,.8,.2,1) both;
  color: #898984;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  margin: 0 0 42px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

/* Apple-style Button Styling */
.hero .primary-button {
  position: relative;
  background: var(--lime);
  color: #080a04;
  box-shadow: 0 2px 12px rgba(155, 234, 0, 0.2);
  border: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero .primary-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(155, 234, 0, 0.3);
}

.hero .primary-button:active {
  transform: scale(0.98);
}



/* Apple-style Subtle Grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(155, 234, 0, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 234, 0, 0.01) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0;
  animation: grid-fade 3s ease 1s forwards;
}

@keyframes grid-fade {
  to { opacity: 1; }
}

/* Apple-style Text Motion */
.hero h1 {
  position: relative;
}

.hero h1 span {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero h1:hover span {
  transform: translateY(-5px);
}

.hero h1 em {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero h1:hover em {
  transform: translateY(-5px);
}
.hero .eyebrow { animation: hero-heading-in .9s .1s cubic-bezier(.2,.8,.2,1) both; color: #898984; font-family: var(--mono); font-size: 11px; letter-spacing: .22em; margin: 0 0 42px; text-transform: uppercase; }
h1 { animation: hero-heading-in .9s .16s cubic-bezier(.2,.8,.2,1) both; font-size: clamp(46px, 7.7vw, 104px); font-weight: 600; letter-spacing: -.07em; line-height: 1.1; margin: 0; white-space: nowrap; }
@media (max-width: 768px) {
  h1 { white-space: normal; }
}
.hero .hero-copy { animation: hero-heading-in .9s .22s cubic-bezier(.2,.8,.2,1) both; }
.hero .primary-button { animation: hero-heading-in .9s .28s cubic-bezier(.2,.8,.2,1) both; }
h1 em {
  background: linear-gradient(90deg, var(--lime) 0%, var(--lime) 18%, #e0f8a7 48%, var(--lime) 78%, var(--lime) 100%);
  background-clip: text;
  background-size: 220% 100%;
  color: transparent;
  display: inline-block;
  font-style: normal;
  margin-right: -.08em;
  overflow: visible;
  padding-right: .08em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lime-flow 3.2s linear infinite;
}
.hero .hero-copy { color: var(--body-muted); font-size: clamp(14px, 1.45vw, 18px); line-height: 1.6; margin: 36px auto 28px; max-width: 720px; }
.primary-button { align-items: center; border-radius: 28px; display: inline-flex; gap: 12px; padding: 15px 25px; transition: box-shadow .25s, transform .25s; }
.primary-button span { font-size: 17px; }
.service-strip { align-items: center; background: var(--panel); border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: flex; gap: clamp(25px, 5.8vw, 86px); justify-content: flex-start; min-height: 50px; padding: 14px 26px; overflow: hidden; position: relative; }
.service-strip-content { display: flex; gap: clamp(25px, 5.8vw, 86px); animation: marquee-services 30s linear infinite; }
.service-strip-content:hover { animation-play-state: paused; }

@keyframes marquee-services {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.service-strip a { align-items: center; display: flex; flex: 0 0 auto; gap: 12px; }
.service-strip span { color: var(--strip-muted); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.service-strip b { color: var(--lime); font-family: var(--mono); font-size: 17px; }
.below-fold { padding: 86px clamp(12px, 4vw, 52px) 110px; }
.work-heading { text-align: center; }
.work-heading .eyebrow { margin-bottom: 14px; }
h2 { font-size: clamp(42px, 5vw, 64px); letter-spacing: -.07em; line-height: 1; margin: 0 0 38px; }
.work-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.work-card { background: #121313; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.work-image { background: #d7d2c8; display: block; aspect-ratio: 1.78 / 1; overflow: hidden; }
.work-image img { display: block; height: 100%; object-fit: cover; object-position: center top; transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .55s ease; width: 100%; }
.work-card:hover .work-image img { filter: saturate(1.08); transform: scale(1.045); }
.work-meta { align-items: center; display: flex; gap: 12px; justify-content: space-between; min-height: 45px; padding: 0 15px; }
.work-meta span { color: #999893; font-size: 12px; }
.work-meta a { color: var(--cream); font-family: var(--mono); font-size: 10px; transition: color .25s ease; }
.work-meta a:hover { color: var(--lime); }
.about-section { border-top: 1px solid var(--line); padding: 104px clamp(20px, 5vw, 64px) 110px; }
.about-intro { margin: 0 auto; max-width: 640px; text-align: center; }
.about-intro h2 { font-size: clamp(44px, 5vw, 62px); margin-bottom: 20px; }
.about-lead { color: var(--cream); font-size: clamp(17px, 1.8vw, 21px); line-height: 1.45; margin: 0 auto; max-width: 650px; }
.about-copy { color: var(--body-muted); font-size: 16px; line-height: 1.55; margin: 20px auto 0; max-width: 620px; }
.approach { margin: 55px auto 0; max-width: 1205px; }
.approach h3 { font-size: clamp(28px, 3vw, 36px); letter-spacing: -.055em; margin: 0 0 30px; text-align: center; }
.approach-grid { display: grid; gap: 20px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.approach-card { background: #121313; border: 1px solid var(--line); border-radius: 6px; min-height: 230px; padding: 34px 28px 30px; text-align: center; transition: border-color .25s ease, transform .25s ease; }
.approach-card:hover { border-color: rgba(155, 234, 0, .42); transform: translateY(-4px); }
.approach-number { color: var(--lime); display: block; font-family: var(--mono); font-size: 11px; margin-bottom: 16px; }
.approach-card h4 { color: var(--cream); font-size: 19px; letter-spacing: -.035em; margin: 0 0 12px; }
.approach-card p { color: var(--body-muted); font-size: 15px; line-height: 1.55; margin: 0; }
.marquee-section { background: #101111; border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); overflow: hidden; padding: 36px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 34s linear infinite; }
.marquee-group { align-items: center; display: flex; flex-shrink: 0; gap: 20px; padding-right: 20px; }
.marquee-group img { aspect-ratio: 1.72 / 1; border: 1px solid rgba(255,255,255,.14); border-radius: 9px; display: block; height: 96px; object-fit: cover; width: 166px; }
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.services-section { border-top: 1px solid var(--line); padding: 96px clamp(20px, 5vw, 64px) 120px; }
.services-heading { margin: 0 auto 44px; text-align: center; }
.services-heading h2 { font-size: clamp(42px, 5vw, 62px); margin-bottom: 10px; }
.services-heading p { color: var(--body-muted); font-size: 14px; margin: 0; }
.services-story { align-items: start; display: grid; gap: clamp(30px, 7vw, 86px); grid-template-columns: minmax(0, 1fr) minmax(360px, .96fr); margin: 0 auto; max-width: 1180px; }
.service-list { min-width: 0; }
.service-item { border-bottom: 1px solid var(--line); cursor: default; padding: 24px 12px 26px; transition: border-color .3s ease, opacity .3s ease; }
.service-item:first-child { border-top: 1px solid var(--line); }
.service-item:not(.is-active) { opacity: .58; }
.service-item.is-active { border-bottom-color: rgba(155,234,0,.35); opacity: 1; }
.service-number { color: var(--muted); font-family: var(--mono); font-size: 10px; }
.service-item h3 { color: var(--cream); font-size: 17px; letter-spacing: -.03em; margin: 10px 0 9px; }
.service-item p { color: var(--body-muted); font-size: 13px; line-height: 1.55; margin: 0; max-width: 610px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 13px; }
.service-tags span { border: 1px solid var(--line); border-radius: 14px; color: var(--body-muted); font-family: var(--mono); font-size: 9px; padding: 6px 9px; }
.service-visual { align-self: start; height: fit-content; position: sticky; top: 118px; }
.service-image { aspect-ratio: 1.18 / 1; border-radius: 7px; display: block; height: auto; object-fit: cover; opacity: 0; transform: translateY(8px); transition: opacity .35s ease, transform .35s ease; width: 100%; }
.service-image.is-visible { opacity: 1; transform: translateY(0); }
.reveal-section { background: #0A0A0B; height: 200vh; position: relative; }
.reveal-sticky { height: 100vh; overflow: hidden; position: sticky; top: 0; }
.reveal-cards { inset: 0; pointer-events: none; position: absolute; }
.reveal-card { aspect-ratio: 260 / 170; background: #111212; border: 1px solid rgba(255,255,255,.14); border-radius: 16px; left: 50%; overflow: hidden; position: absolute; top: 50%; transform: translate3d(-50%, -50%, 0); width: clamp(190px, 62vw, 260px); will-change: transform, opacity; }
.reveal-card img { display: block; height: 100%; object-fit: cover; width: 100%; }
.reveal-scrim { background: radial-gradient(ellipse at center, rgba(10,10,11,.92) 0%, rgba(10,10,11,.72) 34%, rgba(10,10,11,0) 72%); inset: 0; opacity: 0; pointer-events: none; position: absolute; will-change: opacity; z-index: 1; }
.reveal-copy { color: #EFECE4; left: 50%; opacity: 0; pointer-events: none; position: absolute; text-align: center; top: 32%; transform: translate3d(-50%, 18px, 0); width: min(540px, calc(100% - 40px)); will-change: opacity, transform; z-index: 2; }
.reveal-copy .eyebrow { margin-bottom: 20px; }
.reveal-copy h2 { color: #EFECE4; font-size: clamp(22px, 2.8vw, 36px); font-weight: 600; letter-spacing: -.02em; line-height: 1.3; margin: 0 auto 18px; max-width: 600px; }
.reveal-accent { color: #92D700; }
.reveal-copy > p:not(.eyebrow) { color: var(--body-muted); font-size: 16px; margin: 0; }
.reveal-actions { align-items: center; display: flex; gap: 14px; justify-content: center; margin-top: 28px; }
.reveal-copy .primary-button, .reveal-secondary { border-radius: 999px; font-size: 14px; font-weight: 600; padding: 15px 26px; }
.reveal-copy .primary-button { background: #92D700; box-shadow: 0 8px 24px -6px rgba(146,215,0,.45); color: #0A0A0B; }
.reveal-copy .primary-button:hover { background: #a5ed00; box-shadow: 0 14px 32px -6px rgba(146,215,0,.7); transform: translateY(-3px) scale(1.03); }
.reveal-secondary { background: transparent; border: 1px solid #232326; color: #EFECE4; transition: border-color .25s ease, background .25s ease; }
.reveal-secondary:hover { background: var(--panel); border-color: var(--cream); }
.reveal-copy.is-visible { pointer-events: auto; }
.testimonials-section { background: #0A0A0B; border-top: 1px solid var(--line); padding: 104px 0 56px; }
.testimonials-heading { text-align: center; }
.testimonials-heading h2 { color: #EFECE4; font-size: clamp(42px, 5vw, 62px); margin: 0 0 64px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.testimonial-card { align-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 7px; display: flex; flex-direction: column; justify-content: space-between; min-height: 310px; padding: 44px clamp(22px, 4vw, 70px) 40px; text-align: center; }
.stars { color: #92D700; font-size: 20px; letter-spacing: 2px; line-height: 1; }
.testimonial-card p { color: #EFECE4; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; margin: 34px 0; max-width: 390px; }
.testimonial-card cite { color: #8A8882; font-family: var(--mono); font-size: 13px; font-style: normal; letter-spacing: .04em; }
.contact-section { align-items: start; background: #0A0A0B; border-top: 1px solid var(--line); display: grid; gap: clamp(45px, 7vw, 100px); grid-template-columns: minmax(0, 1fr) minmax(420px, .98fr); padding: 90px clamp(24px, 5vw, 72px) 110px; }
.contact-intro h2 { color: #EFECE4; font-size: clamp(58px, 8vw, 100px); letter-spacing: -.075em; line-height: .95; margin: 0 0 26px; }
.contact-intro > p { color: var(--body-muted); font-size: 18px; line-height: 1.45; margin: 0; max-width: 560px; }
.contact-email { border-top: 1px solid var(--line); margin-top: 26px; padding-top: 20px; }
.contact-email span, .contact-form label > span { color: #898984; display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .18em; margin-bottom: 11px; }
.contact-email a { color: #EFECE4; font-size: 18px; }
.contact-form { background: #151516; border: 1px solid rgba(255,255,255,.12); border-radius: 6px; display: flex; flex-direction: column; gap: 28px; padding: 30px 28px 34px; }
.contact-form label:not(.privacy-check) { display: block; }
.contact-form input:not([type="checkbox"]), .contact-form textarea { background: #101011; border: 1px solid rgba(255,255,255,.1); border-radius: 4px; color: #EFECE4; display: block; font: inherit; outline: none; padding: 13px 14px; transition: border-color .25s ease; width: 100%; }
.contact-form textarea { min-height: 135px; resize: vertical; }
.contact-form input:not([type="checkbox"]):focus, .contact-form textarea:focus { border-color: #92D700; }
.privacy-check { align-items: flex-start; color: var(--body-muted); display: flex; font-size: 13px; gap: 12px; line-height: 1.4; }
.privacy-check input { accent-color: #92D700; flex: 0 0 auto; height: 16px; margin: 1px 0 0; width: 16px; }
.contact-form button { background: #EFE8D7; border: 0; border-radius: 999px; color: #111112; cursor: pointer; font-size: 14px; font-weight: 700; padding: 16px 24px; transition: box-shadow .25s ease, transform .25s ease; }
.contact-form button:hover { box-shadow: 0 10px 28px rgba(239,232,215,.18); transform: translateY(-2px); }
.form-status { color: #92D700; font-family: var(--mono); font-size: 11px; margin: -12px 0 0; min-height: 14px; }
.final-cta { background: #121213; border: 1px solid var(--line); border-radius: 0 0 6px 6px; padding: 72px 24px 94px; text-align: center; }
.final-cta h2 { color: #EFECE4; font-size: clamp(42px, 5vw, 62px); margin: 0 0 12px; }
.final-cta p { color: var(--body-muted); font-size: 18px; line-height: 1.45; margin: 0 auto 30px; max-width: 580px; }
.cta-button { background: #92D700; border-radius: 999px; box-shadow: 0 10px 28px -7px rgba(146,215,0,.55); color: #0A0A0B; display: inline-block; font-size: 16px; font-weight: 600; padding: 17px 30px; transition: box-shadow .25s ease, transform .25s ease; }
.cta-button:hover { box-shadow: 0 14px 36px -6px rgba(146,215,0,.8); transform: translateY(-3px); }
.site-footer { align-items: start; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr .7fr 1fr; min-height: 228px; padding: 62px clamp(24px, 7vw, 100px) 24px; position: relative; }
.footer-brand .brand { margin-bottom: 22px; }
.footer-brand p { color: var(--body-muted); font-size: 14px; margin: 0; }
.footer-nav { display: flex; flex-direction: column; gap: 14px; }
.footer-nav a, .footer-email { color: var(--body-muted); font-size: 15px; transition: color .25s ease; }
.footer-nav a:hover, .footer-email:hover { color: #EFECE4; }
.footer-email { justify-self: end; }
.footer-copyright { bottom: 10px; color: #777570; font-family: var(--mono); font-size: 10px; left: 50%; margin: 0; position: absolute; transform: translateX(-50%); }
.anchor-section { height: 1px; }
.light-mode { --black: #f4f5ef; --panel: #e7e9e0; --line: rgba(18, 24, 12, .15); --muted: #5f655b; --cream: #161a12; --lime-soft: #5b9000; --header-muted: #5f655b; --body-muted: #62685d; --strip-muted: #60675c; }
.light-mode .hero-glow { background: radial-gradient(ellipse, rgba(154, 213, 44, .18) 0%, rgba(244, 245, 239, 0) 65%); }
.light-mode .brand-mark { border-color: rgba(18, 24, 12, .25); }
.light-mode .brand-name span { color: #71786c; }
.light-mode .language-switcher, .light-mode .theme-button { color: #62695d; }
.light-mode .chevron { color: #20261b; }

/* Scroll Reveal Animations */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Text Reveal Animation */
.text-reveal {
  overflow: hidden;
  position: relative;
}

.text-reveal .char {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease;
}

.text-reveal.is-visible .char {
  transform: translateY(0);
  opacity: 1;
}

/* Advanced 3D Tilt Effect for Work Cards */
.work-card {
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.1s ease, box-shadow 0.3s ease;
}

.work-card:hover {
  box-shadow: 0 30px 60px rgba(155, 234, 0, 0.2);
}

.work-image {
  transform: translateZ(0);
  transition: transform 0.3s ease;
}

.work-card:hover .work-image {
  transform: translateZ(30px);
}

.work-meta {
  transform: translateZ(20px);
  transition: transform 0.3s ease;
}

/* Magnetic Button Effect */
.magnetic-button {
  position: relative;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.magnetic-button::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, var(--lime), transparent, var(--lime));
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.magnetic-button:hover::before {
  opacity: 0.5;
}

/* Parallax Hero Effect */
.hero {
  position: relative;
  overflow: hidden;
}

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

.hero-glow {
  transition: transform 0.1s ease-out;
}

/* Advanced Hover Effects */
.hover-lift {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}

.hover-lift:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(155, 234, 0, 0.25);
}

.hover-glow {
  position: relative;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.hover-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(155, 234, 0, 0.15), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.hover-glow:hover::after {
  opacity: 1;
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(155, 234, 0, 0.4);
  border-color: var(--lime);
}

/* Smooth Text Animation */
.animate-text {
  display: inline-block;
  overflow: hidden;
}

.animate-text span {
  display: inline-block;
  transform: translateY(100%);
  animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

/* Page Transition */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 10001;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.page-transition.active {
  transform: translateY(0);
}

/* Luxury Card Effect */
.luxury-card {
  position: relative;
  overflow: hidden;
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(155, 234, 0, 0.1), transparent);
  transition: left 0.6s ease;
}

.luxury-card:hover::before {
  left: 100%;
}

/* Stagger Animation Delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Enhanced Button Hover */
.primary-button, .contact-button, .cta-button {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}

.primary-button::after, .contact-button::after, .cta-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.primary-button:hover::after, .contact-button:hover::after, .cta-button:hover::after {
  width: 300px;
  height: 300px;
}

.primary-button:hover, .contact-button:hover, .cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(155, 234, 0, 0.35);
}

/* Reduced Motion for Performance */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll, .reveal-left, .reveal-right, .reveal-scale, .text-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .work-card, .approach-card {
    transform: none !important;
  }
}
@keyframes reveal { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-heading-in { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lime-flow {
  from { background-position: 100% 0; }
  to { background-position: 0 0; }
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 10px)); }
}

@media (prefers-reduced-motion: reduce) {
  h1 { animation: none; }
  h1 em { animation: none; background-position: 0 0; }
  .marquee-track { animation: none; }
  .reveal-card:nth-child(1) { transform: translate3d(calc(-50% - (clamp(190px, 62vw, 260px) + 14px) * 2), -50%, 0) rotate(-8deg) scale(1.05); }
  .reveal-card:nth-child(2) { transform: translate3d(calc(-50% - (clamp(190px, 62vw, 260px) + 14px)), -50%, 0) scale(.8); }
  .reveal-card:nth-child(3) { transform: translate3d(-50%, -50%, 0) scale(.8); }
  .reveal-card:nth-child(4) { transform: translate3d(calc(-50% + (clamp(190px, 62vw, 260px) + 14px)), -50%, 0) scale(.8); }
  .reveal-card:nth-child(5) { transform: translate3d(calc(-50% + (clamp(190px, 62vw, 260px) + 14px) * 2), -50%, 0) rotate(8deg) scale(1.15); }
  .reveal-card { opacity: 1; }
  .reveal-copy { opacity: 1; pointer-events: auto; transform: translate3d(-50%, 0, 0); }
  .reveal-scrim { opacity: 1; }
}

@media (max-width: 780px) {
  .site-header { height: 76px; padding: 0 18px; }
  .brand-name { display: none; }

  /* Hide scrollbar on mobile */
  body {
    scrollbar-width: none;
  }
  body::-webkit-scrollbar {
    display: none;
  }

  /* Hide desktop nav and actions on mobile */
  .site-header > .main-nav { display: none; }
  .header-actions { display: none; }

  /* Show mobile header actions on mobile */
  .mobile-header-actions { display: flex; }

  /* Hamburger menu visible on mobile */
  .hamburger-menu { display: flex; }

  /* Mobile menu styling - fixed overlay */
  .mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    padding: 40px 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 99;
  }

  .mobile-menu.is-open {
    display: flex;
    transform: translateX(0);
  }

  .mobile-menu .main-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 40px 0;
  }

  .mobile-menu .main-nav a {
    font-size: 24px;
    font-weight: 600;
    padding: 16px 0;
    color: var(--cream);
  }
  
  .header-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin: 0;
  }
  
  .language-toggle { width: 80px; }
  .theme-button { display: flex; }
  .contact-button { font-size: 16px; padding: 14px 28px; width: 100%; text-align: center; }
  
  /* Hide body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
  }
  .hero { min-height: 570px; }
  .hero-content { padding-top: 64px; }
  .eyebrow { font-size: 9px; margin-bottom: 30px; }
  h1 { font-size: clamp(45px, 14vw, 72px); letter-spacing: -.075em; }
  .hero-copy { font-size: 14px; margin-top: 30px; }
  .service-strip { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .service-strip::-webkit-scrollbar { display: none; }
  .below-fold { padding: 72px 14px 84px; }
  .work-grid { gap: 14px; grid-template-columns: 1fr; }
  h2 { margin-bottom: 28px; }
  .about-section { padding: 78px 14px 84px; }
  .about-lead { font-size: 16px; }
  .about-copy { font-size: 14px; }
  .approach { margin-top: 48px; }
  .approach-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .approach-card { min-height: 245px; padding: 28px 17px 24px; }
  .approach-card h4 { font-size: 17px; }
  .approach-card p { font-size: 13px; }
  .marquee-section { padding: 25px 0; }
  .marquee-group { gap: 12px; padding-right: 12px; }
  .marquee-group img { height: 72px; width: 124px; }
  .services-section { padding: 78px 14px 86px; }
  .services-story { display: block; }
  .service-item { padding-left: 4px; padding-right: 4px; }
  .service-visual { margin-top: 28px; position: relative; top: auto; }
  .reveal-card { border-radius: 16px; width: min(78vw, 260px); }
  .reveal-copy h2 { font-size: clamp(32px, 10vw, 54px); }
  .reveal-copy > p:not(.eyebrow) { font-size: 14px; }
  .reveal-actions { flex-direction: column; }
  .testimonials-section { padding: 78px 14px 40px; }
  .testimonials-heading h2 { margin-bottom: 36px; }
  .testimonials-grid { gap: 14px; grid-template-columns: 1fr; }
  .testimonial-card { min-height: 250px; padding: 34px 24px 30px; }
  .testimonial-card p { font-size: 16px; margin: 26px 0; }
  .contact-section { display: block; padding: 74px 14px 84px; }
  .contact-intro h2 { font-size: clamp(58px, 17vw, 90px); }
  .contact-intro > p { font-size: 16px; }
  .contact-email { margin-bottom: 38px; }
  .contact-form { padding: 25px 18px 28px; }
  .final-cta { padding: 62px 18px 72px; }
  .final-cta p { font-size: 16px; }
  .site-footer { display: block; min-height: 330px; padding: 46px 24px 54px; }
  .footer-nav { margin: 34px 0; }
  .footer-email { display: inline-block; }
  .footer-copyright { bottom: 18px; white-space: nowrap; }
}
