:root {
  --lime: #b9ed22;
  --ink: #080907;
  --paper: #f2f1eb;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, sans-serif; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
em { font-family: Georgia, serif; font-weight: 400; }

header {
  height: 86px; padding: 0 5vw; position: fixed; inset: 0 0 auto; z-index: 9;
  display: flex; align-items: center; color: #fff;
  transition: height .4s ease, background .4s ease, box-shadow .4s ease;
}
header.scrolled { height: 70px; background: #050505; box-shadow: 0 12px 35px #0003; border-bottom: 1px solid #ffffff18; }
.logo { display: block; flex: 0 0 auto; width: 112px; height: 72px; }
.logo img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
.foot-top .logo { width: 168px; height: 118px; }
nav { display: flex; gap: 32px; font-size: 13px; margin-left: 38px; }
nav a { padding: 10px 0; border-bottom: 2px solid transparent; }
nav a:hover, nav a.active { border-color: var(--lime); }
.talk { font-size: 12px; border-bottom: 1px solid; margin-left: auto; }
.menu { display: none; width: 48px; height: 48px; padding: 0; border: 1px solid #ffffff40; border-radius: 50%; background: #0b0c0acc; color: #fff; margin-left: auto; place-items: center; position: relative; cursor: pointer; }
.menu span, .menu:before, .menu:after { content: ''; position: absolute; width: 18px; height: 1.5px; background: currentColor; transition: transform .35s ease, opacity .25s ease; }
.menu:before { transform: translateY(-6px); }
.menu:after { transform: translateY(6px); }
.menu span { transform: none; }
header.open .menu:before { transform: rotate(45deg); }
header.open .menu:after { transform: rotate(-45deg); }
header.open .menu span { opacity: 0; }

.hero { min-height: 100vh; padding: 160px 7vw 65px; background: var(--ink); color: #fff; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
.hero:before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg,rgba(8,9,7,.96) 0%,rgba(8,9,7,.78) 43%,rgba(8,9,7,.2) 76%,rgba(8,9,7,.58) 100%); pointer-events: none; }
.hero:after { content: ''; position: absolute; z-index: 1; right: -4vw; top: 6vh; width: min(48vw,760px); aspect-ratio: 1.52; background-image: url('/vireach-logo.png'); background-repeat: no-repeat; background-size: 216% auto; background-position: 50% 28%; opacity: .1; pointer-events: none; }
.hero > .eyebrow, .hero > h1, .hero > .hero-bottom { position: relative; z-index: 2; }
.hero-services { position: absolute; inset: 92px -4vw 0 38%; overflow: hidden; opacity: .74; transform: rotate(-3deg) scale(1.06); }
.hero-service-track { height: 100%; width: max-content; display: flex; align-items: center; gap: 22px; animation: heroServicesMove 48s linear infinite; will-change: transform; }
.hero-service-track figure { position: relative; width: clamp(240px,22vw,360px); height: clamp(370px,58vh,610px); flex: 0 0 auto; margin: 0; overflow: hidden; background: #151613; box-shadow: 0 24px 70px #0008; }
.hero-service-track img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.84) contrast(1.06); transform: scale(1.08); animation: heroImageDrift 12s ease-in-out infinite alternate; }
.hero-service-track figure:nth-child(even) img { animation-direction: alternate-reverse; }
.hero-service-track figcaption { position: absolute; inset: auto 0 0; padding: 45px 18px 17px; color: #fff; background: linear-gradient(transparent,#000d); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
@keyframes heroServicesMove { to { transform: translateX(calc(-50% - 11px)); } }
@keyframes heroImageDrift { from { transform: scale(1.08) translate3d(-1.5%,0,0); } to { transform: scale(1.16) translate3d(1.5%,-1%,0); } }
.eyebrow, .kicker { text-transform: uppercase; letter-spacing: .2em; font-weight: bold; font-size: 12px; line-height: 1.55; }
.eyebrow { color: #c9cac3; }
.eyebrow:before { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--lime); vertical-align: middle; margin-right: 12px; }
.hero h1 { position: relative; z-index: 1; font-size: clamp(56px,8.4vw,122px); line-height: .9; letter-spacing: -.06em; margin: 40px 0; }
.hero h1 em { color: var(--lime); }
.hero-bottom { position: relative; z-index: 1; border-top: 1px solid #ffffff2c; padding-top: 25px; display: flex; justify-content: space-between; align-items: end; }
.hero-bottom p { max-width: 550px; line-height: 1.65; color: #b9bab3; font-size: 17px; }
.circle { width: 70px; height: 70px; border: 1px solid #ffffff66; border-radius: 50%; display: grid; place-items: center; font-size: 24px; }
.circle:hover { background: var(--lime); color: #000; }
.inner { min-height: 84vh; }
.inner h1 { font-size: clamp(52px,7.4vw,106px); }

section { padding: 115px 7vw; }
.kicker { color: #777970; margin-bottom: 42px; }
.statement h2, .intro h2 { font-size: clamp(42px,5.8vw,82px); line-height: .98; letter-spacing: -.05em; margin: 0 0 60px; }
.statement h2 span, .intro h2 span { color: #91ba18; }
.copy { margin-left: 35%; border-top: 1px solid #c7c8c0; padding-top: 25px; display: flex; justify-content: space-between; }
.copy p { max-width: 580px; color: #5c5e56; font-size: 17px; line-height: 1.75; }
.purpose-section { background: #e3e4dc; }
.purpose-section h2 { font-size: clamp(42px,5.8vw,82px); line-height: .98; letter-spacing: -.05em; margin: 0 0 60px; }
.purpose-section h2 span { color: #91ba18; }
.purpose-grid { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid #bfc1b7; }
.purpose-card { padding: 42px 6vw 20px 0; }
.purpose-card + .purpose-card { padding-left: 6vw; border-left: 1px solid #bfc1b7; }
.purpose-label { margin: 0 0 28px; color: #74766d; font-size: 12px; font-weight: bold; letter-spacing: .16em; text-transform: uppercase; }
.purpose-card h3 { margin: 0 0 20px; font-size: clamp(27px,2.7vw,40px); line-height: 1.06; letter-spacing: -.035em; }
.purpose-card > p:last-child { margin: 0; color: #55574f; font-size: 17px; line-height: 1.75; }
.button { display: inline-flex; align-items: center; gap: 20px; background: var(--lime); padding: 18px 24px; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: bold; border: 0; }
.dark { background: var(--ink); color: #fff; }
.dark h2 { font-size: clamp(44px,6.5vw,88px); line-height: .94; letter-spacing: -.055em; }

.rows { background: #dcddd4; }
.row { display: grid; grid-template-columns: 1fr 1fr 30px; align-items: center; gap: 25px; border-top: 1px solid #b6b8ae; padding: 35px 0; transition: padding .45s ease, background .45s ease; }
.row h3 { font-size: clamp(26px,2.7vw,40px); letter-spacing: -.04em; margin: 0; }
.row p { color: #60625a; line-height: 1.6; font-size: 14px; }
.row:hover { padding-left: 15px; background: #ffffff5c; }
.grid { display: grid; grid-template-columns: repeat(2,1fr); }
.card { border-top: 1px solid #c5c6be; padding: 36px 6vw 55px 0; min-height: 210px; }
.card:nth-child(even) { padding-left: 6vw; border-left: 1px solid #c5c6be; }
.card h3 { font-size: 27px; margin: 18px 0 15px; }
.card p { color: #60625a; line-height: 1.7; }

.clients-page .intro { padding-top: 88px; padding-bottom: 70px; }
.clients-page .intro h2 { font-size: clamp(38px,4.8vw,68px); margin-bottom: 42px; }
.sector-grid { grid-template-columns: repeat(3,1fr); border-bottom: 1px solid #c5c6be; }
.sector-grid .card {
  min-height: 118px;
  padding: 22px 25px 24px;
  border-left: 1px solid #c5c6be;
}
.sector-grid .card:nth-child(3n+1) { border-left: 0; padding-left: 0; }
.sector-grid .card:nth-child(even) { padding-left: 25px; }
.sector-grid .card h3 { font-size: clamp(17px,1.6vw,22px); margin: 8px 0; }

.client-showcase {
  background: #e3e4dc;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 7vw;
  align-items: center;
  overflow: hidden;
}
.client-showcase-heading h2 {
  font-size: clamp(38px,4.8vw,68px);
  line-height: .98;
  letter-spacing: -.05em;
  margin: 0 0 28px;
}
.client-showcase-heading h2 span { color: #91ba18; }
.client-showcase-heading > p:last-child { color: #60625a; line-height: 1.75; max-width: 460px; }
.client-carousel { position: relative; min-width: 0; }
.client-stage {
  position: relative;
  height: clamp(390px,43vw,535px);
  overflow: hidden;
  background: #f7f7f2;
  border: 1px solid #ced0c6;
}
.client-stage:before,
.client-stage:after {
  content: '';
  position: absolute;
  z-index: 3;
  inset: 0 auto 0 0;
  width: 8%;
  pointer-events: none;
  background: linear-gradient(90deg,#f7f7f2,transparent);
}
.client-stage:after { left: auto; right: 0; transform: rotate(180deg); }
.client-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 38px;
  opacity: 0;
  transform: translateX(-105%);
  visibility: hidden;
}
.client-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}
.client-slide.enter-right {
  visibility: visible;
  animation: clientEnterRight .9s cubic-bezier(.22,.72,.18,1) both;
}
.client-slide.exit-right {
  visibility: visible;
  animation: clientExitRight .9s cubic-bezier(.55,.05,.3,1) both;
}
.client-logo {
  width: min(72%,405px);
  height: min(63%,300px);
  padding: clamp(18px,2.6vw,32px);
  display: grid;
  place-items: center;
  background: #fff;
}
.client-logo-dark { background: #080907; }
.client-logo-unframed { background: transparent; padding: 0; width: min(76%,430px); height: min(68%,325px); }
.client-logo-maron { background: #fff; }
.client-logo-lebanese {
  width: min(62%,330px);
  height: min(68%,330px);
  padding: 0;
  background: transparent;
  aspect-ratio: 1;
}
.client-logo img { display: block; width: 100%; height: 100%; object-fit: contain; object-position: center; }
@keyframes clientEnterRight {
  from { opacity: 0; transform: translateX(-105%) scale(.97); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes clientExitRight {
  from { opacity: 1; transform: translateX(0) scale(1); }
  to { opacity: 0; transform: translateX(105%) scale(.97); }
}

.services { display: grid; gap: 90px; }
.service { display: grid; grid-template-columns: 1.1fr .9fr; background: #fff; min-height: 530px; overflow: hidden; }
.service:nth-child(even) { grid-template-columns: .9fr 1.1fr; }
.service:nth-child(even) .photo { order: 2; }
.photo { min-height: 480px; background-size: cover; background-position: center; position: relative; transform: scale(1.035); transition: transform 1.6s cubic-bezier(.2,.7,.2,1); }
.service.seen .photo { transform: scale(1); }
.service:hover .photo { transform: scale(1.045); }
.s1 { background-image: url('/assets/services/branding.jpeg'); background-position: center; }
.s2 { background-image: url('/assets/services/influencer-marketing.jpeg'); background-position: center; }
.s3 { background-image: url('/assets/services/content-creation.jpeg'); background-position: center; }
.s4 { background-image: url('/assets/services/market-research-strategy.jpeg'); background-position: center; }
.s5 { background-image: url('/assets/services/event-management.jpeg'); background-position: center; }
.s6 { background-image: url('/assets/services/social-media-management.jpeg'); background-position: center; }
.s7 { background-image: url('/assets/services/merchandising.png'); background-position: center; }
.s8 { background-image: url('/assets/services/photography-videography.jpeg'); background-position: center; }
.info { padding: 55px; display: flex; flex-direction: column; justify-content: center; }
.info h2 { font-size: clamp(32px,3.2vw,48px); line-height: 1.05; letter-spacing: -.045em; }
.info p { color: #5c5e56; line-height: 1.7; }
.info b { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #777; margin-top: 25px; }

.contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.details h2 { font-size: clamp(36px,4vw,58px); }
.details div { margin-top: 35px; }
.details div p { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; color: #777; margin-bottom: 9px; }
.details a { font-size: 20px; border-bottom: 1px solid; }
form { display: grid; gap: 28px; }
label { font-size: 10px; text-transform: uppercase; letter-spacing: .14em; font-weight: bold; }
input, select, textarea { display: block; width: 100%; padding: 15px 0; border: 0; border-bottom: 1px solid #bbb; background: transparent; font: 16px Arial; outline: none; }
textarea { resize: vertical; }

footer { background: #0b0c0a; color: #fff; padding: 95px 7vw 30px; }
.foot-top { display: flex; justify-content: space-between; border-bottom: 1px solid #ffffff24; padding-bottom: 65px; }
.foot-top h2 { font-size: clamp(38px,5vw,68px); line-height: .95; margin: 0; }
.foot-top em { color: var(--lime); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 45px; padding: 50px 0; }
.foot-grid div { display: flex; flex-direction: column; gap: 10px; }
.foot-grid p { color: #73756c; text-transform: uppercase; letter-spacing: .15em; font-size: 10px; }
.copyright { border-top: 1px solid #ffffff24; padding-top: 22px; color: #73756c; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }

.reveal { opacity: 0; transform: translateY(38px); filter: blur(3px); transition: opacity .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1), filter .9s ease; }
.reveal.seen { opacity: 1; transform: none; filter: none; }
.row.reveal, .card.reveal { transition-delay: var(--delay,0ms); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .photo, .row { transition: none !important; transform: none !important; filter: none !important; }
  .client-slide { animation: none !important; }
  .hero-service-track, .hero-service-track img { animation: none !important; }
}
@media (max-width: 800px) {
  header { height: 76px; padding: 0 18px; }
  header.scrolled { height: 68px; }
  .logo { width: 105px; height: 62px; position: relative; z-index: 11; }
  header nav { position: fixed; inset: 0; background: radial-gradient(circle at 88% 12%,#b9ed221f,transparent 27%),#080907; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 0; padding: 116px 28px 96px; font-size: clamp(25px,7vw,36px); transform: translateY(-102%); visibility: hidden; opacity: 0; transition: transform .5s cubic-bezier(.22,.75,.18,1), opacity .35s ease, visibility .5s; z-index: 10; margin-left: 0; overflow-y: auto; }
  header nav:before { content: 'Explore Vireach'; color: #a6a89f; font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; padding-bottom: 16px; border-bottom: 1px solid #ffffff24; }
  header nav:after { content: 'info@vireach.net'; color: #b9ed22; font-size: 13px; letter-spacing: .04em; position: absolute; left: 28px; bottom: 34px; }
  header nav a { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid #ffffff1f; line-height: 1.15; color: #f4f4ef; }
  header nav a:after { content: '↗'; color: #777a70; font-size: 17px; transition: color .25s ease, transform .25s ease; }
  header nav a:hover:after, header nav a.active:after { color: var(--lime); transform: translate(2px,-2px); }
  header nav a.active { color: var(--lime); border-color: #b9ed225c; }
  header.open nav { transform: none; visibility: visible; opacity: 1; }
  header.open .menu { position: relative; z-index: 12; border-color: #b9ed2280; }
  .talk { display: none; }
  .menu { display: grid; z-index: 12; }
  .hero:after { right: -18vw; top: 11vh; width: 92vw; opacity: .075; }
  .hero { padding: 130px 24px 45px; }
  .hero:before { background: linear-gradient(180deg,rgba(8,9,7,.5),rgba(8,9,7,.88) 58%,#080907 88%); }
  .hero-services { inset: 75px -70vw 35% 8vw; opacity: .55; transform: rotate(-4deg); }
  .hero-service-track { gap: 14px; animation-duration: 38s; }
  .hero-service-track figure { width: 190px; height: 42vh; min-height: 300px; }
  .hero h1 { font-size: clamp(46px,14vw,72px); }
  .inner h1 { font-size: clamp(44px,13vw,68px); }
  .hero-bottom { display: block; }
  .circle { margin-top: 20px; }
  section { padding: 80px 24px; }
  .statement h2, .intro h2, .dark h2 { font-size: clamp(38px,11vw,58px); }
  .eyebrow, .kicker { font-size: 11px; letter-spacing: .17em; }
  .hero-bottom p, .copy p, .client-showcase-heading > p:last-child { font-size: 16px; line-height: 1.7; }
  .copy { margin: 0; display: block; }
  .purpose-section h2 { font-size: clamp(38px,11vw,58px); }
  .purpose-grid { grid-template-columns: 1fr; }
  .purpose-card, .purpose-card + .purpose-card { padding: 32px 0; border-left: 0; }
  .purpose-card + .purpose-card { border-top: 1px solid #bfc1b7; }
  .purpose-card > p:last-child { font-size: 16px; }
  .row { grid-template-columns: 1fr 25px; }
  .row p { display: none; }
  .grid, .contact { grid-template-columns: 1fr; }
  .card:nth-child(even) { padding-left: 0; border-left: 0; }
  .clients-page .intro { padding-top: 70px; padding-bottom: 55px; }
  .sector-grid { grid-template-columns: repeat(2,1fr); }
  .sector-grid .card,
  .sector-grid .card:nth-child(even),
  .sector-grid .card:nth-child(3n+1) { min-height: 96px; padding: 17px 12px; border-left: 1px solid #c5c6be; }
  .sector-grid .card:nth-child(odd) { border-left: 0; padding-left: 0; }
  .sector-grid .card h3 { font-size: 16px; }
  .client-showcase { grid-template-columns: 1fr; gap: 42px; }
  .client-stage { height: 390px; }
  .client-slide { padding: 24px; }
  .client-logo { width: 78%; height: 245px; padding: 20px; }
  .client-logo-unframed { width: 82%; height: 265px; padding: 0; }
  .client-logo-lebanese { width: min(72vw,270px); height: min(72vw,270px); padding: 0; }
  .service, .service:nth-child(even) { grid-template-columns: 1fr; }
  .service:nth-child(even) .photo { order: 0; }
  .photo { min-height: 320px; background-size: cover; }
  .service.seen .photo, .service:hover .photo { background-size: cover; }
  .info { padding: 35px 24px; }
  .info h2 { font-size: clamp(30px,9vw,42px); }
  .foot-top { display: block; }
  .foot-top h2 { margin-top: 45px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid div:first-child { grid-column: 1/-1; }
}
